home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / l11u01.zip / GETATRIB.PAT < prev    next >
Text File  |  1992-12-03  |  1KB  |  33 lines

  1. TARGET=C:\NWLITE\CLIENT.EXE
  2. LIST
  3.     print "GETATRIB.PAT - NetWare Lite Client get device attribute fix.\n"
  4. VERIFY
  5.     va = search ( E9 56 F2 90 90 E8 26 fD 73 09
  6.                   3C 12 75 03 B8 02 00 checksum 758 )
  7.     vc = search ( 83 FF FF 75 08 33 C0 8B F8 8B
  8.                   D8 F8 C3 C6 06 B1 00 16 E9 97 0D checksum BB2 )
  9.     if ((va=1000) AND (vc=259) ) then
  10.         print "  $TARGET already contains patch GETATRIB.PAT.\n"
  11.         stop
  12.     else
  13.         print "  $TARGET does not contain patch GETATRIB.PAT.\n"
  14.     endif
  15. APPLY
  16.     print "  Applying patch GETATRIB.PAT to $TARGET...\n"
  17.     vb = search ( C6 06 B1 00 16 E8 26 FD 73 09
  18.                   3C 12 75 03 B8 02 00 checksum 59A )
  19.     if (vb=1000) then
  20.         patch 1000 ( E9 56 F2 90 90 checksum 351 )
  21.         patch  259 ( 83 FF FF 75 08 33 C0 8B F8 8B
  22.                      D8 F8 C3 C6 06 B1 00 16 E9 97 0D checksum BB2 )
  23.         write
  24.         print "  $TARGET now contains patch GETATRIB.PAT.\n"
  25.         stop
  26.     else
  27.         print "  Could not find pattern indicating that $TARGET\n"
  28.         print "  needs this patch.  Make sure you are using this\n"
  29.         print "  patch with NetWare Lite CLIENT.EXE, version 1.1.\n"
  30.         stop
  31.     endif
  32.  
  33.